home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-19 | 966 b | 41 lines | [TEXT/CWIE] |
- // ===========================================================================
- // SCAPIMenuBar.h ©1997 Spunk Cross All rights reserved.
- // ===========================================================================
-
- #ifndef SCAPIMENUBAR_H
- #define SCAPIMENUBAR_H
-
- #include "SCAPICommonIncludes.h"
- #include "SCAPIMenu.h"
-
-
- // ---------------------------------------------------------------------------
- // SCAPIMenuBar Class
- // ---------------------------------------------------------------------------
-
- class SCAPIMenuBar : public CMenu
- {
-
- // ===========================================================
- // === Spunk Cross API, these are the routines you can use ===
- // ===========================================================
-
- // Constructor - Destructor
- // ------------------------
-
- public:
-
- SCAPIMenuBar();
-
- ~SCAPIMenuBar();
-
-
- // Member functions
- // ----------------
-
- public:
-
- void AddMenu(SCAPIMenu* inMenuP);
- };
-
- #endif